-- XSD schema extracted from ITU-T H.627 (08/2020)

<?xml version="1.0" encoding="utf-8"?> <schema xmlns="http://www.w3.org/2001/XMLSchema"> <choice maxOccurs="unbounded"> <element name="Notify"> <complexType> <sequence> <!-- Notification request command series is shown as follows.--> <!-- Target device /VSS ID (required) --> <element name="DeviceID" type="deviceIDType"/> <!-- Command type: mobile device position data notification (required)--> <element name="CmdType" fixed="MobilePosition"/> <!-- Command SN (required) --> <element name="SN" type="integer" minInclusive="1"/> <!-- Notification time (required) --> <element name="Time" type="dateTime"/> <!-- Total number of mobile device locations (required)--> <element name="SumNum" type="integer"/> <!-- Mobile device location list, Num indicates the number of list entries --> <element name="DeviceList" minOccurs="0"> <complexType> <choice minOccurs="0" maxOccurs="unbounded"> <element name="Item" type="itemMobilePositionType"/> </choice> <attribute name="Num" type="integer"/> </complexType> </element> </sequence> </complexType> </element> </choice> </schema>